Package-level declarations
Types
Link copied to clipboard
class Card(val type: PaymentMethodType, number: String, val expiryDate: CardExpiryDate, val cvv: String? = null, val cardholder: String? = null)
Use this class to process raw card data for payments. You should use this class if your app takes over the user interface for the card input fields.
Link copied to clipboard
Class to be used to represent the card expiry date (month and year).
Link copied to clipboard
Use this to choose which label to display for the card option in the payment method selection.
Link copied to clipboard
data class CvvOnlyCard(val maskedCardNumber: String, val expiryDate: CardExpiryDate, val type: PaymentMethodType, val cvv: String?)
This class represents a previously tokenized card used in the CVV-only tokenization/verification flow for PCI Proxy.